home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / ComputerScience / MethodsInAction / MethodsInAction.app / Example3.m < prev    next >
Text File  |  1992-08-19  |  454b  |  25 lines

  1.  
  2. /*  Multiplier.m   By Jeff Froyd.  Generated by Interface Builder */
  3.  
  4. #import <appkit/TextField.h>
  5. #import "Example3.h"
  6.  
  7. @implementation Example3
  8.  
  9. - multiplierChanged:sender
  10. {
  11.     multiplier = [sender doubleValue];
  12.      [productField setDoubleValue:(multiplicand * multiplier)];
  13.      return self;
  14. }
  15.  
  16. - multiplicandChanged:sender
  17. {
  18.     multiplicand = [sender doubleValue];
  19.      [productField setDoubleValue:(multiplicand * multiplier)];
  20.     return self;
  21. }
  22.  
  23.  
  24. @end
  25.